home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 2
/
Atari Mega Archive CD - Volume 2.iso
/
minix
/
up1510b.tgz
/
up1510b
/
src
/
commands
/
stterm
/
Makefile.gcc
< prev
next >
Wrap
Makefile
|
1990-07-15
|
453b
|
30 lines
CC = mgcc
CFLAGS = -O -DWANT_HCJ_RS232
LFLAGS = -s -z
ALL = term write_tty read_tty
all: $(ALL)
term: term.o err.o
$(CC) -o term term.o err.o $(LFLAGS)
write_tty: write_tty.o do_shell.o
$(CC) -o write_tty write_tty.o do_shell.o $(LFLAGS)
read_tty: read_tty.o
$(CC) -o read_tty read_tty.o $(LFLAGS)
write_tty.o: write_tty.c const.h
read_tty.o: read_tty.c const.h
term.o: term.c
err.o: err.c
do_shell.o: do_shell.c
clean:
rm -f *.o $(ALL)